Method: Vips::Image#>=

Defined in:
lib/vips8/image.rb

#>=(other) ⇒ Image

Relational more than or equal to with an image, constant or array.

Parameters:

  • other (Image, Real, Array<Real>)

    relational more than or equal to with this

Returns:

  • (Image)

    result of more than or equal to

[View source]

881
882
883
884
# File 'lib/vips8/image.rb', line 881

def >=(other)
    other.is_a?(Vips::Image) ? 
        relational(other, :moreeq) : relational_const(other, :moreeq)
end